records
(Formation Studio) Fichier consolidé des Bornes de Recharge pour Véhicules Électriques (IRVE) – schéma 2
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"formation-studio-fichier-consolide-des-bornes-de-recharge-pour-vehicules-electri",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/formation-studio-fichier-consolide-des-bornes-de-recharge-pour-vehicules-electri"
}
] - "definitions":{
- "formation-studio-fichier-consolide-des-bornes-de-recharge-pour-vehicules-electri":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/formation-studio-fichier-consolide-des-bornes-de-recharge-pour-vehicules-electri_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "formation-studio-fichier-consolide-des-bornes-de-recharge-pour-vehicules-electri_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "nom_amenageur":,{
- "type":"string",
- "title":"Nom aménageur",
- "description":""
} - "siren_amenageur":,{
- "type":"string",
- "title":"SIREN aménageur",
- "description":""
} - "contact_amenageur":,{
- "type":"string",
- "title":"Contact aménageur",
- "description":""
} - "nom_operateur":,{
- "type":"string",
- "title":"Nom opérateur",
- "description":""
} - "contact_operateur":,{
- "type":"string",
- "title":"Contact opérateur",
- "description":""
} - "telephone_operateur":,{
- "type":"string",
- "title":"Téléphone opérateur",
- "description":""
} - "nom_enseigne":,{
- "type":"string",
- "title":"Nom enseigne",
- "description":""
} - "id_station_itinerance":,{
- "type":"string",
- "title":"ID station itinérance",
- "description":""
} - "id_station_local":,{
- "type":"string",
- "title":"ID station local",
- "description":""
} - "nom_station":,{
- "type":"string",
- "title":"Nom station",
- "description":""
} - "implantation_station":,{
- "type":"string",
- "title":"Implantation station",
- "description":""
} - "adresse_station":,{
- "type":"string",
- "title":"Adresse station",
- "description":""
} - "code_insee_commune":,{
- "type":"string",
- "title":"Code INSEE commune",
- "description":""
} - "coordonneesxy":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Coordonnées",
- "description":""
} - "nbre_pdc":,{
- "type":"integer",
- "title":"Nombre Points de charge",
- "description":""
} - "id_pdc_itinerance":,{
- "type":"string",
- "title":"ID PDC itinérance",
- "description":""
} - "id_pdc_local":,{
- "type":"string",
- "title":"ID PDC local",
- "description":""
} - "puissance_nominale":,{
- "type":"integer",
- "title":"Puissance nominale",
- "description":""
} - "prise_type_ef":,{
- "type":"integer",
- "title":"Prise type E/F",
- "description":""
} - "prise_type_2":,{
- "type":"integer",
- "title":"Prise type 2",
- "description":""
} - "prise_type_combo_ccs":,{
- "type":"integer",
- "title":"Prise type combo ccs",
- "description":""
} - "prise_type_chademo":,{
- "type":"integer",
- "title":"Prise type chademo",
- "description":""
} - "prise_type_autre":,{
- "type":"integer",
- "title":"Prise type autre",
- "description":""
} - "gratuit":,{
- "type":"integer",
- "title":"Gratuit",
- "description":""
} - "paiement_acte":,{
- "type":"integer",
- "title":"Paiement acte",
- "description":""
} - "paiement_cb":,{
- "type":"integer",
- "title":"Paiement CB",
- "description":""
} - "paiement_autre":,{
- "type":"integer",
- "title":"Paiement autre",
- "description":""
} - "tarification":,{
- "type":"string",
- "title":"Tarification",
- "description":""
} - "condition_acces":,{
- "type":"string",
- "title":"Condition accès",
- "description":""
} - "reservation":,{
- "type":"integer",
- "title":"Réservation",
- "description":""
} - "horaires":,{
- "type":"string",
- "title":"Horaires",
- "description":""
} - "accessibilite_pmr":,{
- "type":"string",
- "title":"Accessibilité PMR",
- "description":""
} - "restriction_gabarit":,{
- "type":"string",
- "title":"Restriction gabarit",
- "description":""
} - "station_deux_roues":,{
- "type":"integer",
- "title":"Station deux roues",
- "description":""
} - "raccordement":,{
- "type":"string",
- "title":"Raccordement",
- "description":""
} - "num_pdl":,{
- "type":"string",
- "title":"Num PDL",
- "description":""
} - "date_mise_en_service":,{
- "type":"string",
- "format":"date",
- "title":"Date mise en service",
- "description":""
} - "observations":,{
- "type":"string",
- "title":"Observations",
- "description":""
} - "date_maj":,{
- "type":"string",
- "format":"date",
- "title":"Date de Mise à Jour",
- "description":"Dernière date de mise à jour des données"
} - "last_modified":,{
- "type":"string",
- "format":"date-time",
- "title":"Dernière modification",
- "description":""
} - "datagouv_dataset_id":,{
- "type":"string",
- "title":"datagouv dataset id",
- "description":""
} - "datagouv_resource_id":,{
- "type":"string",
- "title":"datagouv resource id",
- "description":""
} - "datagouv_organization_or_owner":,{
- "type":"string",
- "title":"datagouv organization or owner",
- "description":""
} - "com_arm_name":,{
- "type":"string",
- "title":"Nom de la commune ou de l'arrondissement municipal",
- "description":""
} - "com_arm_code":,{
- "type":"string",
- "title":"Code de la commune ou de l'arrondissement",
- "description":""
} - "code_epci":,{
- "type":"string",
- "title":"Code EPCI",
- "description":""
} - "nom_epci":,{
- "type":"string",
- "title":"Nom de l'EPCI",
- "description":""
} - "dep_code":,{
- "type":"string",
- "title":"Code Officiel Département",
- "description":""
} - "dep_name":,{
- "type":"string",
- "title":"Nom Officiel Département",
- "description":""
} - "reg_code":,{
- "type":"string",
- "title":"Code Officiel Région",
- "description":""
} - "reg_name":{
- "type":"string",
- "title":"Nom Officiel Région",
- "description":""
}
} - "nom_amenageur":
}
} - "fields":
} - "properties":
} - "formation-studio-fichier-consolide-des-bornes-de-recharge-pour-vehicules-electri":
}
Submit a reuse
Click to expand Click to collapse
Please login to submit a new reuse.